home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / children / map.exe / GO.BAT < prev    next >
DOS Batch File  |  1991-05-05  |  923b  |  49 lines

  1. echo off
  2. :start
  3. cls
  4. echo PRECISION SOFTWARE APPLICATIONS. 10 High Street, Tadlow,
  5. echo Nr Herts. SG8 0ES. Telephone 0767 23302. Fax 0767 23622.
  6. echo.
  7. echo Please choose ...
  8. echo.
  9. echo 1 Run the Program
  10. echo.
  11. echo 2 View the Documentation
  12. echo.
  13. echo 3 Print the Manual
  14. echo.
  15. echo 4 Quit to DOS
  16. choice 1234
  17. if errorlevel 4 goto stop
  18. if errorlevel 3 goto printer
  19. if errorlevel 2 goto monitor
  20. cls
  21. world29.exe
  22. goto stop
  23. :monitor
  24. cls
  25. list.com world.doc
  26. goto start
  27. :printer
  28. cls
  29. echo.
  30. echo IMPORTANT: in order to print the documentation the printer must be
  31. echo connected up and switched on.
  32. echo.
  33. echo Press "c" to continue .... or "q" to quit ...
  34. choice CcQq
  35. if errorlevel 4 goto start
  36. if errorlevel 3 goto start
  37. echo.
  38. echo The documentation is now being printed ...
  39. copy world.doc prn
  40. echo   >prn
  41. copy registra prn
  42. echo   >prn
  43. echo.
  44. echo Printing completed
  45. goto start
  46. :stop
  47. cls
  48. 
  49.